/* ============================================
   CSS Variables - Easy to adjust based on logo colors
   ============================================ */
:root {
    --primary-color: #065f46;
    --primary-dark: #047857;
    --primary-light: #059669;
    --secondary-color: #0f1f1a;
    --accent-color: #047857;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --text-lighter: #999999;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --bg-dark: #0f1f1a;
    --border-color: #e0e0e0;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
    --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

/* ============================================
   Reset & Base Styles
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ============================================
   Navigation
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 0;
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.6rem;
    font-weight: 700;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.logo-text {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo img {
    height: 45px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
    flex: 1;
    justify-content: center;
    margin: 0 2rem;
}

.nav-link {
    font-weight: 500;
    color: var(--text-light);
    font-size: 0.95rem;
    position: relative;
    padding: 0.5rem 0;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link.active {
    color: var(--primary-color);
    font-weight: 600;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
    font-size: 1.2rem;
}

.nav-icon:hover {
    background: var(--bg-light);
    color: var(--primary-color);
}

.nav-cta {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.cta-primary {
    background: var(--primary-color);
    color: white;
    padding: 0.65rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.cta-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
}

.cta-secondary {
    background: white;
    color: var(--primary-color);
    padding: 0.65rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    border: 2px solid var(--primary-color);
    transition: var(--transition);
    cursor: pointer;
}

.cta-secondary:hover {
    background: var(--bg-light);
    transform: translateY(-1px);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: var(--transition);
    border-radius: 3px;
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    padding-bottom: 60px;
    overflow: hidden;
    background: #f5f5f5;
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-left {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
    line-height: 1.2;
    color: var(--text-dark);
}

.hero-title-accent {
    color: var(--primary-color);
    font-weight: 700;
}

.hero-title-bold {
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 2rem;
    color: var(--text-light);
    line-height: 1.7;
    max-width: 550px;
}

.hero-wifi-icon {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
    opacity: 0.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-right {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-graphic-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: var(--primary-color);
    top: 10%;
    right: 10%;
    animation: float 6s ease-in-out infinite;
}

.shape-2 {
    width: 250px;
    height: 250px;
    background: var(--primary-dark);
    bottom: 20%;
    right: 5%;
    animation: float 8s ease-in-out infinite reverse;
}

.shape-3 {
    width: 200px;
    height: 200px;
    background: var(--accent-color);
    top: 50%;
    right: 30%;
    animation: float 7s ease-in-out infinite;
}

.hero-wifi-router {
    position: relative;
    z-index: 2;
    font-size: 8rem;
    opacity: 0.9;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}


/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 50px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    box-shadow: var(--shadow-lg);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(6, 95, 70, 0.3);
}

.btn-secondary {
    background: white;
    color: var(--text-dark);
    border: 2px solid var(--text-dark);
}

.btn-secondary:hover {
    background: var(--text-dark);
    color: white;
}

.btn-package {
    width: 100%;
    background: var(--gradient-primary);
    color: white;
    margin-top: 1rem;
}

.btn-package:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* ============================================
   Section Styles
   ============================================ */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    font-weight: 400;
}

/* ============================================
   About Section
   ============================================ */
.about {
    background: var(--bg-white);
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 3rem;
    text-align: center;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-item {
    text-align: center;
    padding: 2rem;
    border-radius: 15px;
    background: var(--bg-light);
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.feature-item p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* ============================================
   Packages Section
   ============================================ */
.packages {
    background: var(--bg-light);
}

.packages-type {
    margin-bottom: 4rem;
}

.package-type-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    text-align: center;
}

.package-type-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.location-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.location-tab {
    padding: 12px 24px;
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 50px;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    transition: var(--transition);
}

.location-tab:hover,
.location-tab.active {
    background: var(--gradient-primary);
    color: white;
    border-color: transparent;
}

.location-packages {
    display: none;
}

.location-packages.active {
    display: block;
}

.branch-info {
    text-align: center;
    margin-bottom: 2rem;
    padding: 1rem;
    background: white;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.branch-info a {
    color: var(--primary-color);
    font-weight: 600;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.package-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.package-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: var(--transition);
}

.package-card:hover::before {
    transform: scaleX(1);
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.package-card.featured {
    border: 3px solid var(--primary-color);
    transform: scale(1.05);
}

.package-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.package-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.package-speed {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.package-name {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.package-details {
    margin-bottom: 1.5rem;
}

.package-details p {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.package-price {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.package-note {
    text-align: center;
    color: var(--text-light);
    font-style: italic;
    margin-top: 1rem;
}

.installation-info {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    margin-top: 2rem;
}

.installation-info h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.installation-info p {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.special-offer {
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    color: white;
    padding: 1rem;
    border-radius: 10px;
    margin-top: 1rem;
    font-weight: 600;
}

.corporate-package {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.corporate-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.corporate-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.corporate-item p {
    color: var(--text-light);
    font-size: 1.1rem;
}

.corporate-item a {
    color: var(--primary-color);
    font-weight: 600;
}

/* ============================================
   Coverage Section
   ============================================ */
.coverage {
    background: var(--bg-white);
}

.coverage-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.coverage-card {
    background: transparent;
    padding: 0;
    text-align: center;
    transition: var(--transition);
}

.coverage-city-icon {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    border: 3px solid #e0e0e0;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    color: #999999;
}

.coverage-city-icon svg {
    width: 70%;
    height: 70%;
    transition: var(--transition);
}

.coverage-card h3 {
    font-size: 1.2rem;
    margin-top: 0.5rem;
    color: var(--text-dark);
    font-weight: 600;
}

.coverage-card p {
    display: none;
}

.coverage-card:hover .coverage-city-icon {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

.coverage-card:hover .coverage-city-icon svg {
    transform: scale(1.05);
}

/* ============================================
   Services Section
   ============================================ */
.services {
    background: var(--bg-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* ============================================
   Contact Section
   ============================================ */
.contact {
    background: var(--bg-white);
    padding: 80px 0;
}

.contact .section-title {
    text-align: center;
    margin-bottom: 3rem;
}

/* Contact Info Blocks */
.contact-info-blocks {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    background: #f5f5f5;
    padding: 2.5rem;
    border-radius: 12px;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.contact-block {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex: 1;
    min-width: 250px;
    padding: 0 2rem;
}

.contact-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.contact-block-content {
    flex: 1;
}

.contact-block-label {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.contact-block-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
    word-break: break-all;
}

.contact-block-number a {
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition);
}

.contact-block-number a:hover {
    color: var(--primary-color);
}

.contact-block-divider {
    width: 1px;
    height: 60px;
    background: #d0d0d0;
    flex-shrink: 0;
}

/* Reach the right team */
.reach-team-section {
    margin-bottom: 4rem;
}

.reach-team-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.reach-team-icon {
    font-size: 2rem;
    color: var(--primary-color);
}

.reach-team-header h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

.team-columns {
    display: flex;
    gap: 0;
    background: #f5f5f5;
    padding: 2.5rem;
    border-radius: 12px;
    flex-wrap: wrap;
}

.team-column {
    flex: 1;
    min-width: 250px;
    padding: 0 2rem;
}

.team-column h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.team-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.team-timing {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.team-email {
    font-size: 0.95rem;
    margin: 0;
}

.team-email a {
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition);
}

.team-email a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.team-extension {
    font-size: 0.95rem;
    margin: 0;
}

.team-extension a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.team-extension a:hover {
    color: var(--primary-color);
}

.team-column-divider {
    width: 1px;
    background: #d0d0d0;
    flex-shrink: 0;
}

/* Office Address Section */
.office-address-section {
    margin-top: 4rem;
}

.office-address-section .section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.office-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.office-card {
    background: #f5f5f5;
    padding: 1.25rem;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
    transition: var(--transition);
}

.office-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}

.office-card h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.office-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 0;
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: var(--bg-dark);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-logo {
    text-align: center;
    flex-shrink: 0;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    transition: var(--transition);
}

.footer-logo:hover {
    opacity: 0.9;
    transform: scale(1.02);
}

.footer-logo img {
    height: 60px;
    margin: 0 auto 1rem;
}

.footer-logo h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
}

.footer-links {
    display: flex;
    gap: 3rem;
    flex: 1;
    justify-content: flex-end;
}

.footer-column {
    min-width: 150px;
}

.footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: white;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-column ul li a:hover {
    color: white;
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

/* ============================================
   Animations
   ============================================ */
.fade-in {
    animation: fadeIn 1s ease-in;
}

.fade-in-delay {
    animation: fadeIn 1s ease-in 0.3s both;
}

.fade-in-delay-2 {
    animation: fadeIn 1s ease-in 0.6s both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 968px) {
    .nav-actions {
        gap: 0.5rem;
    }

    .nav-icon {
        display: none;
    }

    .nav-cta {
        gap: 0.5rem;
    }

    .cta-primary,
    .cta-secondary {
        padding: 0.55rem 1rem;
        font-size: 0.85rem;
    }

    .mobile-cta {
        display: none;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        transition: var(--transition);
        box-shadow: var(--shadow-lg);
        padding: 2rem 0;
        gap: 0;
        margin: 0;
        justify-content: flex-start;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        width: 100%;
        padding: 1rem 0;
    }

    .nav-link {
        display: block;
        width: 100%;
    }

    .nav-actions {
        display: none;
    }

    .mobile-cta {
        display: block;
        padding: 1.5rem 2rem !important;
        border-top: 1px solid var(--border-color);
        margin-top: 1rem;
    }

    .nav-icon-mobile {
        display: block;
        padding: 1rem 0;
        text-align: center;
        font-weight: 600;
        color: var(--primary-color);
        margin-bottom: 1rem;
    }

    .mobile-cta-buttons {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }

    .mobile-btn {
        width: 100%;
        text-align: center;
    }

    .nav-wrapper {
        position: relative;
    }

    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .hero-right {
        height: 400px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        max-width: 100%;
    }

    .hero-wifi-icon {
        display: none;
    }

    .shape-1,
    .shape-2,
    .shape-3 {
        width: 200px;
        height: 200px;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .packages-grid {
        grid-template-columns: 1fr;
    }

    .package-card.featured {
        transform: scale(1);
    }

    .package-card.featured:hover {
        transform: translateY(-10px);
    }

    .location-tabs {
        gap: 0.5rem;
    }

    .location-tab {
        padding: 10px 16px;
        font-size: 0.9rem;
    }

    .corporate-details {
        grid-template-columns: 1fr;
    }

    .corporate-package {
        padding: 2rem;
    }

    /* Contact Section Mobile */
    .contact-info-blocks {
        flex-direction: column;
        gap: 0;
    }

    .contact-block {
        width: 100%;
        padding: 1.5rem 0;
        border-bottom: 1px solid #e0e0e0;
    }

    .contact-block:last-child {
        border-bottom: none;
    }

    .contact-block-divider {
        display: none;
    }

    .team-columns {
        flex-direction: column;
        gap: 0;
    }

    .team-column {
        width: 100%;
        padding: 1.5rem 0;
        border-bottom: 1px solid #e0e0e0;
    }

    .team-column:last-child {
        border-bottom: none;
    }

    .team-column-divider {
        display: none;
    }

    .office-cards-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: auto;
        padding-top: 80px;
        padding-bottom: 40px;
    }

    .hero-right {
        height: 300px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-wifi-router {
        font-size: 5rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
    }

    .section-title {
        font-size: 1.8rem;
    }

    section {
        padding: 60px 0;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .coverage-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }

    .social-links {
        flex-direction: column;
    }

    .social-link {
        width: 100%;
        text-align: center;
    }

    /* Footer Mobile */
    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 2rem;
        width: 100%;
    }

    .footer-column {
        width: 100%;
    }
}

